home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro 10',
- 'Host Version': u'10.00 Alpha 20050615.16'
- }
-
- def Preset_ColorAdjustChannelMixer():
- return {
- 'ChannelMixer': {
- 'Monochrome': True,
- 'Red': (100,0,0,0),
- 'Blue': (0,0,100,0),
- 'Green': (0,100,0,0)
- },
- 'SaveRed': (100,0,0,0),
- 'SaveGreen': (0,100,0,0),
- 'SaveBlue': (0,0,100,0)
- }
-
- def Do(Environment):
- # Color Adjust Channel Mixer_LOCALIZED
- App.Do( Environment, 'ColorAdjustChannelMixer', Preset_ColorAdjustChannelMixer())
-
-